home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright (C) 1988-1994 The GAP Development Company
-
- All Rights Reserved
-
- This source code is considered to be confidential information proprietary
- to The GAP Development Company. It is prohibited and punishable by law
- to use or duplicate any part of this information.
-
- COMPILER.H
-
- Defines compiler options
- */
-
- #if !defined(__COMPILER_H__)
- #define __COMPILER_H__
-
- #if (__BORLANDC__)
- // these are Non-ANSI, but Borland still doesn't support the
- // underscores that are required by non-ansi functions
-
- #define _FP_SEG FP_SEG
- #define _FP_OFF FP_OFF
- #define _sopen sopen
- #define _open open
- #define _close close
- #define _cputs cputs
- #define _ltoa ltoa
- #define _outp outp
- #define _inp inp
- #define _REGS REGS
- #define _int86 int86
- #define _strlwr strlwr
- #define _read read
- #define _write write
- #define _lseek lseek
- #define _getcwd getcwd
- #define _chdir chdir
- #define _itoa itoa
- #endif
-
- #endif // __COMPILER_H__ defined
-